home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / TURB_VIS / TCYBER25 / CYGRAPH.ZIP / CRCMDS.PAS < prev    next >
Pascal/Delphi Source File  |  1994-10-20  |  718b  |  43 lines

  1. {
  2. Turbo Vision CyberTools 2.5
  3. (C) 1994 Steve Goldsmith
  4. All Rights Reserved
  5.  
  6. Commands used by CyberGraph app.
  7. }
  8.  
  9. unit CRCmds;
  10.  
  11. {$I APP.INC}
  12.  
  13. interface
  14.  
  15. const
  16.  
  17. {app commands}
  18.  
  19.   cmLoadFont    = 1000;
  20.   cmSaveFont    = 1001;
  21.   cmLoadPCX     = 1002;
  22.   cmSavePCX     = 1003;
  23.   cmSaveConfig  = 1004;
  24.   cmLoadConfig  = 1005;
  25.   cmRestoreDef  = 1006;
  26.   cmScreenOpts  = 1007;
  27.   cmAdjPal      = 1008;
  28.   cmAbout       = 1009;
  29.   cmViewDoc     = 1010;
  30.   cmColors      = 1011;
  31.   cmLines       = 1012;
  32.   cmEllipses    = 1013;
  33.   cmRectangles  = 1014;
  34.   cmLineGraph   = 1015;
  35.   cmClrGraphWin = 1016;
  36.   cmWinSize     = 1017;
  37.   cmStarField   = 1018;
  38.   cmPhaseScreen = 1019;
  39.  
  40. implementation
  41.  
  42. end.
  43.